home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover Louisiana / Let's Discover Louisiana.iso / pc / FILES / TIME.dxr / 00506_thirdTimelineScript.ls < prev    next >
Encoding:
Text File  |  2002-12-03  |  285 b   |  17 lines

  1. global frameSpeed
  2.  
  3. on exitFrame me
  4.   global direction
  5.   if direction = "right" then
  6.     go(marker("Start"))
  7.   else
  8.     if direction = "left" then
  9.       if the frameLabel <> "First" then
  10.         go(the frame - frameSpeed)
  11.       end if
  12.     else
  13.       go("First")
  14.     end if
  15.   end if
  16. end
  17.